Stored Procedures [dbo].[BAEFieldSectionDelete]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@FieldSectionIdint4
SQL Script
create procedure [dbo].[BAEFieldSectionDelete] @FieldSectionId as
int
    AS
    DELETE
    FROM FieldSection
    WHERE FieldSectionId = @FieldSectionId
    
    DELETE
    FROM FieldDesignSectionLookup
    WHERE FieldSectionId = @FieldSectionId

GO
Uses